Tidy up debugging output.
authorsmh22@firebug.cl.cam.ac.uk <smh22@firebug.cl.cam.ac.uk>
Tue, 22 Nov 2005 17:21:22 +0000 (18:21 +0100)
committersmh22@firebug.cl.cam.ac.uk <smh22@firebug.cl.cam.ac.uk>
Tue, 22 Nov 2005 17:21:22 +0000 (18:21 +0100)
Signed-off-by: Steven Hand <steven@xensource.com>
tools/libxc/xc_linux_save.c

index 6683a5ee613cd3cc3484e96bf013589519f7d9ae..ade255f9136c33b8b3daee1a8cc602cf575f5313 100644 (file)
@@ -473,14 +473,9 @@ void canonicalize_pagetable(unsigned long type, unsigned long pfn,
             if (!MFN_IS_IN_PSEUDOPHYS_MAP(mfn)) {
                 /* This will happen if the type info is stale which 
                    is quite feasible under live migration */
-                DPRINTF("FNI: [%08lx,%d] pte=%llx,"
-                        " mfn=%08lx, pfn=%08lx [mfn]=%08lx\n",
-                        type, i, (unsigned long long)pte, mfn, 
-                        live_m2p[mfn],
-                        (live_m2p[mfn] < max_pfn) ? 
-                        live_p2m[live_m2p[mfn]] : 0xdeadbeaf);
-                
-                pfn = 0; /* be suspicious */
+                DPRINTF("PT Race: [%08lx,%d] pte=%llx, mfn=%08lx\n",
+                        type, i, (unsigned long long)pte, mfn); 
+                pfn = 0; /* zap it - we'll retransmit this page later */
             } else 
                 pfn = live_m2p[mfn];